home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 109
/
Vol 109.iso
/
games
/
flash_ch.swf
/
scripts
/
frame_11
/
DoAction.as
Wrap
Text File
|
2008-11-12
|
470b
|
25 lines
trace("best: " + bestMove);
delete allPossibleMoves;
trace("time " + (getTimer() - s));
if(bestMove == null)
{
messages.gotoAndStop("Pat");
}
isPat = checkChessState(SIDE_COMPUTER);
tempP = do_move(bestMove,SIDE_COMPUTER);
isNotMat = checkChessState(SIDE_COMPUTER);
undo_move(bestMove,SIDE_COMPUTER,tempP);
if(isNotMat)
{
moveRealComputer(bestMove);
}
else if(isPat)
{
messages.gotoAndStop("Pat");
}
else
{
computerLoose();
}
stop();